scrawl 1.1.0

Opens a user's preferred text editor so they can edit data inline and saves the result to a String. Useful for interactive CLI applications.
Documentation

Scrawl

Rust library that opens a user's text editor and returns the results as a string. Can be used to open and edit exisiting files, or just as a scratch space for input. Useful for having a user edit text inline with a CLI program a la git commit -m

Animated example of how to use the with command

Built for my new (under development) daily journaling program in Rust: Echo

Quick Start

use scrawl;

fn main() {
    // Open an empty buffer with the user's preferred text editor
    let output = scrawl::new()?;
    println!("User Input: {}", output);

    // Open a buffer with contents in the text editor
    let output = scrawl::with("Favorite color: ")?;
    println!("{}", output);

    // Open a buffer with text from a file in the text editor
    let output = scrawl::open("survey.txt")?;
    println!("{}", output);

    // Open a file for direct editing in the text editor
    let output = scrawl::edit("README.md")?;
    println!("{}", output);
}

Editor Struct

The Editor struct allows you to set certain options before opening the editor. It also allows you resuse these settings instead of having to build them each time you want to use an editor. Run edit() on the struct to open the buffer.

use scrawl::{editor, error};

fn main() -> Result<(), error::ScrawlError> {
    let editor = editor::new()
                        .editor("vim")
                        .contents("My favorite color is: ")
                        .open()?;
    println!("About Me:\n{}", fave_color);
}

If you want to open a one off editor without using settings, see the Functions section below.

Settings

Editor

You can set a preferred text editor for the user. Otherwise, $VISUAL, $EDITOR or "textpad.exe"/"vi" is used as a fallback if none is set.

let output = editor::new().editor("vim").open()?;

File

You can set a file from which the text buffer will be seeded.

let output = editor::new().file("my_survey.txt").open()?;

Contents

You can use a string to seed the text buffer.

let output = editor::new().contents("Favorite Number: ").open()?;

Extension

Set the extension of the temporary file created as a buffer. Useful for hinting to text editors which syntax highlighting to use.

let output = editor::new().extension(".rs").open()?;

Edit Directly

Opens a file for directory editing in the text editor. Does not return a String with the contents of the file.

editor::new().file("lib.rs").edit(true).open()?;

Functions

These functions are provided for convenience. Useful for prototyping, or if you don't want to build and maintain a struct just to open an editor.

New

Open an empty text buffer in the user's preferred editor. Returns a Result with the contents of the buffer.

Animated example of how to use the new command

use scrawl;

fn main() {
    let output = scrawl::new(path).unwrap();
    println!("{}", output);
}

With

Open an text buffer with the contents of the String slice in the user's preferred editor. Returns a Result with the contents of the buffer.

Animated example of how to use the with command

use scrawl;

fn main() {
    let output = scrawl::with("Hello World!").unwrap();
    println!("{}", output);
}

Open

Open opens a text buffer in an editor with the contents of the file specified. This does not edit the contents of the file. Returns a Result with the contents of the buffer.

Animated example of how to use the open command

use scrawl;

fn main() {
    let output = scrawl::open("hello.txt").unwrap();
    println!("{}", output);
}

Edit

Edit opens a text buffer in an editor with the contents of the file specified. This does edit the contents of the file.

Animated example of how to use the edit command

use scrawl;

fn main() {
    scrawl::edit("README.md").unwrap();
}